home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d12 / ptv1n6.arc / GENERIC2.RC < prev    next >
Text File  |  1991-01-21  |  1KB  |  33 lines

  1. #include "windows.h"
  2. #include "generic.h"
  3.  
  4. GenericIcon ICON GENERIC.ICO
  5. GenericMenu MENU
  6. BEGIN
  7.     POPUP        "&Help"
  8.     BEGIN
  9.         MENUITEM "&About Generic...", IDM_ABOUT
  10.         MENUITEM "&Panic Button...", IDM_PANIC
  11.     END
  12. END
  13.  
  14. AboutBox DIALOG 22, 17, 144, 75
  15. STYLE DS_MODALFRAME | WS_CAPTION | WS_SYSMENU
  16. CAPTION "About Generic"
  17. BEGIN
  18.     CTEXT "Microsoft Windows"     -1,       0,  5, 144,  8
  19.     CTEXT "Generic Application"   -1,       0, 14, 144,  8
  20.     CTEXT "Version 3.0"           -1,       0, 34, 144,  8
  21.     DEFPUSHBUTTON "OK"          IDOK,      53, 59,  32, 14,      WS_GROUP
  22. END
  23.  
  24. PanicBox DIALOG 22, 17, 144, 75
  25. STYLE DS_MODALFRAME | WS_CAPTION | WS_SYSMENU
  26. CAPTION "Sirius Cybernetics Corporation"
  27. BEGIN
  28.     CTEXT "Please do not push"    -1,       0, 14, 144,  8
  29.     CTEXT "this button"           -1,       0, 24, 144,  8
  30.     CTEXT ""               IDC_AGAIN,       0, 34, 144,  8
  31.     DEFPUSHBUTTON "Panic"       IDOK,      53, 49,  32, 14,      WS_GROUP
  32. END
  33.